home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / PowerPlant / HToggleRadioButton 1.2 / HToggleRadioButton Test 68k / CToggleRadioButtonApp.h < prev    next >
Encoding:
Text File  |  1997-06-22  |  776 b   |  24 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CToggleRadioButtonApp.h         ©1996-1997 John C. Daub. All rights reserved.
  3. // ===========================================================================
  4. //    See "HToggleRadioButton README" for more information
  5.  
  6. #pragma once
  7.  
  8. #include <LApplication.h>
  9.  
  10.  
  11. class    CToggleRadioButtonApp : public LApplication {
  12. public:
  13.                         CToggleRadioButtonApp();        // constructor registers all PPobs
  14.     virtual             ~CToggleRadioButtonApp();        // stub destructor
  15.             
  16.     virtual Boolean        ObeyCommand(CommandT inCommand, void* ioParam);    
  17.             
  18.     virtual void        FindCommandStatus(CommandT inCommand,
  19.                             Boolean &outEnabled, Boolean &outUsesMark,
  20.                             Char16 &outMark, Str255 outName);
  21. protected:
  22.  
  23.     virtual void        StartUp();
  24. };